home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- ForgetRgn.c
-
- AUTHOR: Andrew_Gilmartin@Brown.Edu
- MODIFIED: 93-11-04
-
- Copyright (C) 1993 by Brown University. All rights reserved.
-
- Permission is granted to any individual or institution to use, copy,
- or redistribute the binary version of this software and its
- documentation provided this notice and the copyright notices are
- retained. Permission is granted to any individual or non-profit
- institution to use, copy, modify, or redistribute the source files
- of this software provided this notice and the copyright notices are
- retained. This software may not be distributed for profit, either
- in original form or in derivative works, nor can the source be
- distributed to other than an individual or a non-profit institution.
- Any individual or group interested in seeing and/or using these
- source files but who are prevented from doing so by the above
- constraints should contact Don Wolfe, Vice-President for Computer
- Systems at Brown University, (401) 863-7247, for possible
- software licensing of the source developed at Brown.
-
- Brown University and Andrew James Gilmartin make no representations
- about the suitability of this software for any purpose.
-
- BROWN UNIVERSITY AND ANDREW JAMES GILMARTIN GIVE NO WARRANTY, EITHER
- EXPRESS OR IMPLIED, FOR THE PROGRAM AND/OR DOCUMENTATION PROVIDED,
- INCLUDING, WITHOUT LIMITATION, WARRANTY OF MERCHANTABILITY AND
- WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE.
-
- ******************************************************************************/
-
- #include "ForgetRgn.h"
-
-
-
- /******************************************************************************
- __ForgetRgn
-
- Comments
- ******************************************************************************/
-
- void __ForgetRgn( RgnHandle* rgnAddr )
- {
- RgnHandle r = *rgnAddr;
- if ( r )
- {
- *rgnAddr = NULL;
- DisposeRgn( r);
- }
-
- } /* __ForgetRgn */
-